home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / rexx / sfile.rexx < prev    next >
OS/2 REXX Batch file  |  1996-01-15  |  668b  |  26 lines

  1.  
  2. /* Arexxtestscript for the viruskiller VirusWorkshop from Markus Schmall */
  3. /* Version 1.0 (13.6.1995)                                                */
  4.  
  5. OPTIONS RESULTS                             /* enable return codes     */
  6.  
  7. address 'VWPort'
  8.  
  9.  
  10. OPTIONS FAILAT 999                          /* ignore warnings         */
  11.  
  12. /* ------------------------ inSERT YOUR CODE HERE: ------------------- */
  13.  
  14. say "Checking a single file for virus infection..."
  15. "SFILE ram:beethoven"
  16. say "Checking finished..."
  17. IF rc=0 THEN say "No virus found..."
  18. IF rc=1 THEN say "Virus found and deleted...."
  19.  
  20. /* ---------------------------- END OF YOUR CODE --------------------- */
  21.  
  22. EXIT
  23.  
  24.  
  25.  
  26.